home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue40
/
Keystrok
/
KeyTest1.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1998-10-02
|
245 b
|
17 lines
program KeyTest1;
uses
Forms,
KeyTst1U in 'KeyTst1U.pas' {Form1},
KeysU in 'KeysU.pas';
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TForm1, Form1);
Application.Run;
end.